
/* Skill Development Hero Section */
.skill-hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #fff6fa 0%, #fff3e6 100%);
  padding: 60px 0 40px 0;
  min-height: 60vh;
}
.skill-hero-content {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 30px 40px 30px 60px;
}
.skill-hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #222;
  line-height: 1.1;
}
.skill-hero-title .gradient {
  background: linear-gradient(90deg, #ff4e8e 30%, #ff9a44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.skill-hero-subtitle {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 32px;
  line-height: 1.6;
}
.skill-hero-btn-row {
  display: flex;
  gap: 20px;
  margin-bottom: 38px;
}
.skill-btn-primary {
  background: linear-gradient(90deg, #ff4e8e 30%, #ff9a44 100%);
  color: #fff;
  padding: 16px 38px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 78, 142, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
}
.skill-btn-primary:hover {
  background: linear-gradient(90deg, #ff9a44 30%, #ff4e8e 100%);
  box-shadow: 0 6px 24px rgba(255, 78, 142, 0.15);
}
.skill-btn-outline {
  background: #fff;
  color: #ff4e8e;
  border: 2px solid #ff4e8e;
  padding: 16px 38px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.skill-btn-outline:hover {
  background: #ff4e8e;
  color: #fff;
}
.skill-hero-image {
  flex: 1 1 320px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 40px 30px 0;
}
.skill-hero-img-frame {
  display: inline-block;
  border-radius: 36px;
  background: linear-gradient(90deg, #ff4e8e 10%, #ff9a44 90%);
  padding: 10px;
  transform: rotate(4deg);
  box-shadow: 0 8px 32px rgba(255, 78, 142, 0.10);
}
.skill-hero-img {
  width: 340px;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Features List for Mission Section */
.skill-features-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0 0;
}
.skill-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.feature-icon {
  font-size: 1.5em;
  margin-top: 2px;
}
.skill-features-list strong {
  font-weight: 700;
  margin-right: 6px;
}
.skill-features-list span {
  color: #555;
  font-size: 1em;
}

/* Skill Stats Section */
.skill-stats-section {
  background: #fff;
  padding: 2.5em 0 2em 0;
  text-align: center;
}
.skill-stats-row {
  display: flex;
  justify-content: center;
  gap: 3em;
  flex-wrap: wrap;
}
.skill-stat-card {
  background: linear-gradient(135deg, #fff6fa 0%, #f9f6ff 100%);
  border-radius: 50px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.06);
  padding: 2em 2.5em 1.5em 2.5em;
  text-align: center;
  min-width: 180px;
  margin-bottom: 1em;
  transition: box-shadow 0.2s;
}
.skill-stat-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.12);
}
.skill-stat-icon {
  font-size: 2.2em;
  margin-bottom: 0.5em;
  color: #ff4e8e;
}
.skill-stat-number {
  font-size: 2em;
  font-weight: 800;
  color: #222;
  margin-bottom: 0.2em;
}
.skill-stat-label {
  font-size: 1.1em;
  color: #666;
}

@media (max-width: 1100px) {
  .skill-hero-section, .skill-stats-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
  .skill-hero-img {
    max-width: 98vw;
    height: auto;
  }
  .skill-stat-card {
    min-width: 90vw;
    max-width: 350px;
  }
}
@media (max-width: 700px) {
  .skill-hero-title {
    font-size: 1.4em;
  }
  .skill-hero-img-frame {
    border-radius: 18px;
    padding: 4px;
  }
  .skill-hero-img {
    border-radius: 10px;
  }
}

/* Our Programs Section */
.programs-section {
  padding: 70px 0 40px 0;
  background: #fffaf7;
  text-align: center;
}
.programs-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
}
.programs-subtitle {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 38px;
}
.programs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.program-card {
  background: linear-gradient(135deg, #fff6fa 0%, #fff9f3 100%);
  border: 1.5px solid #ffe3d2;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(255, 78, 142, 0.06);
  padding: 36px 32px 28px 32px;
  max-width: 340px;
  min-width: 260px;
  flex: 1 1 300px;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}
.program-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255, 78, 142, 0.13);
  transform: translateY(-6px) scale(1.03);
}
.program-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
/* --- Program Card Styles (from lines 237-276) --- */
}
.program-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4e8e 0%, #ff9a44 100%);
  color: #fff;
  font-size: 2rem;
  margin-bottom: 18px;
}
.program-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.program-card p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.program-card ul {
  padding-left: 18px;
  margin: 0;
  color: #222;
  font-size: 1.04rem;
}
.program-card ul li {
  margin-bottom: 4px;
}
@media (max-width: 1100px) {
  .programs-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
  .program-card {
    max-width: 98vw;
    min-width: 0;
  }
}
.contact-section-custom {
  background: #fff;
  padding: 60px 0 60px 0;
}
.contact-section-header {
  text-align: center;
  margin-bottom: 2.5em;
}
.contact-section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.2em;
  color: #222;
}
.contact-section-subtitle {
  font-size: 1.15rem;
  color: #444;
}
.contact-section-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
.contact-info-card {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 400px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(255, 78, 142, 0.10);
  padding: 36px 32px 28px 32px;
  margin-bottom: 18px;
}
.contact-info-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4e8e 0%, #ff9a44 100%);
  color: #fff;
  font-size: 1.5rem;
}
.contact-info-label {
  font-weight: 600;
  color: #222;
}
.contact-info-value {
  color: #444;
  font-size: 1.05rem;
}
.contact-form-card {
  flex: 1 1 380px;
  min-width: 280px;
  max-width: 480px;
  background: linear-gradient(120deg, #fff6fa 0%, #fff3e6 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(255, 78, 142, 0.10);
  padding: 36px 32px 28px 32px;
  margin-bottom: 18px;
}
.contact-form-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  font-weight: 600;
  color: #222;
  display: block;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #ffe3d2;
  font-size: 1em;
  margin-bottom: 0;
  font-family: inherit;
  resize: none;
}
.contact-form-card button[type="submit"] {
  width: 100%;
  background: linear-gradient(90deg, #ff4e8e 30%, #ff9a44 100%);
  color: #fff;
  padding: 14px 0;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form-card button[type="submit"]:hover {
  background: linear-gradient(90deg, #ff9a44 30%, #ff4e8e 100%);
}
@media (max-width: 1100px) {
  .contact-section-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
  .contact-info-card, .contact-form-card {
    max-width: 98vw;
    min-width: 0;
  }
}
